最近真的是忙死了忙死了,只好+-寫,大家就+-看。
import tensorflow as tf
matrix1 = tf.constant([1, 2, 3, 4, 5, 6, 7, 8, 9 ], shape=[3, 3])
matrix2 = tf.constant([1, 2, 3, 4, 5, 6, 7, 8, 9 ], shape=[3, 3])
product = matrix1 * matrix2
sess = tf.Session()
result = sess.run(product)
print (result)
第1行:為引入tensorflow套件並簡寫為tf,未來要使用時用tf.類別名稱即可使用
第2~3行:為宣告變2個3*3的矩陣 格式為[[1 2 3][4 5 6][7 8 9]]
第4行:為建立運算圖
第5~6行:將運算圖啟動
第7行:為輸出